
 /* h1标签背景为灰色，文字颜色为白色 */
 
 h1 {
     background-color: #666;
     color: white
 }
h2 {
    margin: 10px 0;
}

h2::before {
    content: "";
    border-left: 10px solid #fc8f26;
    padding-left: 5px;
}
section p{
     text-indent: 2em;
}
 /* 基本情况 */
 #introduction{
     overflow: hidden;
 }
 .intro_img {
     width: 340px;
     padding: 10px 10px 10px 0;
 }
 
 strong {
     color: green;
 }
 
 ins {
     color: darkred;
     text-decoration: none;
 }
 
 pre {
     font-size: 14px;
     color: #666;
 }
 /* 个人评价 */
 
 .vid {
     text-align: center;
 }
 
 video {
     width: 600px;
 }
 /* 参演作品 */
 
 .joinlist li {
     float: left;
     width: 50%;
     list-style: none;
     margin: 5px 0;
 }
 
 .joinlist h4 {
     color: #07689f;
     font-size: 18px;
     font-weight: 700;
 }
 
 .joinlist span {
     color: #666;
     font-size: 14px;
 }
 
 .joinlist img {
     width: 80px;
 }
 /* 导演、编剧、获奖作品 */
 
 caption {
     font-size: 20px;
     color: red;
 }
 
 table {
     width: 1000px;
     font-size: 14px;
     /* 合并相邻的边框 */
     border-collapse: collapse;
 }
 
 .blue th {
     background-color: skyblue;
 }
 
 td,
 th {
     text-align: center;
     background-color: white;
     height: 1.5em;
     border: 1px solid skyblue;
     /* 合并相邻的边框 */
     border-collapse: collapse;
 }
 
 .pink th {
     background-color: pink;
 }